Hi,
|
Re: is string empty? |
Re: is string empty? Tony_Goodman - Thu Jun 04 02:50:22 EDT 2009 |
Re: is string empty? if (null Value) Value = "" I think it has to do with Value being either a call parameter from some function(), or the function return value. -Louie |
Re: is string empty? llandale - Fri Jun 05 12:47:31 EDT 2009 When testing a string value for null, especially one returned from a builtin function, I use the following. By concatenating an empty string before the comparison this works for empty string as well as null strings.
As Louie says, the following is not guaranteed to work:
|